home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 17
/
CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso
/
CUCD
/
Programming
/
DiceSource
/
lib
/
amigalib
/
printf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-09-09
|
481 b
|
28 lines
/*
* PRINTF.C dos.library var-args interface to VPrintf()
*
* (c)Copyright 1992-1997 Obvious Implementations Corp. Redistribution and
* use is allowed under the terms of the DICE-LICENSE FILE,
* DICE-LICENSE.TXT.
*
*/
#include <stdio.h>
#include <stdarg.h>
#include <exec/types.h>
#include <clib/dos_protos.h>
LONG
Printf(unsigned char *ctl, ...)
{
va_list va;
int n;
va_start(va, ctl);
n = VPrintf(ctl, va);
va_end(va);
return(n);
}